home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day12 / mstrdtlu.h < prev   
Encoding:
C/C++ Source or Header  |  1998-02-08  |  1.0 KB  |  35 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef MstrDtlUH
  3. #define MstrDtlUH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Db.hpp>
  10. #include <vcl\DBGrids.hpp>
  11. #include <vcl\DBTables.hpp>
  12. #include <vcl\Grids.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.   TDBGrid *DBGrid1;
  18.   TDataSource *DataSource1;
  19.   TTable *Master;
  20.   TDBGrid *DBGrid2;
  21.   TDataSource *DataSource2;
  22.   TTable *Details;
  23.   
  24.   
  25.   TLabel *Label1;
  26.   TLabel *Label2;
  27. private:    // User declarations
  28. public:        // User declarations
  29.   __fastcall TForm1(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TForm1 *Form1;
  33. //---------------------------------------------------------------------------
  34. #endif
  35.